home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / rbbs_pc / rbbsext.zip / T.BAT < prev    next >
DOS Batch File  |  1987-08-15  |  574b  |  32 lines

  1. qmxfer -b 1200 -l com2 -f testfile -r -p x
  2. if errorlevel 7 goto error7
  3. if errorlevel 6 goto error6
  4. if errorlevel 5 goto error5
  5. if errorlevel 4 goto error4
  6. if errorlevel 3 goto error3
  7. if errorlevel 2 goto error2
  8. if errorlevel 1 goto error1
  9. if errorlevel 0 goto end
  10. goto end
  11. :error1
  12. echo this is error 1!
  13. goto end
  14. :error2
  15. echo this is error 2!
  16. goto end
  17. :error3
  18. echo this is error 3!
  19. goto end
  20. :error4
  21. echo this is error 4!
  22. goto end
  23. :error5
  24. echo this is error 5!
  25. goto end
  26. :error6
  27. echo this is error 6!
  28. goto end
  29. :error7
  30. echo this is error 7!
  31. :End
  32.